fix(python-uv): exclude project self-reference from dependency graph#482
Merged
Conversation
ruromero
force-pushed
the
TC-4097
branch
4 times, most recently
from
April 21, 2026 12:53
87aa770 to
8a43335
Compare
Strum355
approved these changes
Apr 21, 2026
When uv export includes the project itself as an editable install (-e .), the global_opt handler resolves it to the root pyproject.toml and adds it as a dependency, causing an off-by-one error in the total dependency count. Two fixes applied: - Add --no-emit-project flag to uv export command - Skip editable installs that resolve to the root project name Test fixture uses the reporter's pyproject.toml (with [build-system]) which triggers uv to emit -e . in the output. Implements TC-4097 Assisted-by: Claude Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
pyproject.tomlprojects usinguv, whereuv exportincludes the project itself as a requirement entry--no-emit-projectflag to theuv exportcommand to prevent the project from appearing in the output_parseUvExportto skip packages matching the project name (covers theTRUSTIFY_DA_UV_EXPORTenv var bypass path)Test plan
Implements TC-4097